home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 44
/
Aminet 44 (2001)(GTI - Schatztruhe)[!][Aug 2001].iso
/
Aminet
/
util
/
rexx
/
rmh.lha
/
RMH
/
Examples
/
tz.rexx
< prev
Wrap
OS/2 REXX Batch file
|
2001-05-24
|
279b
|
12 lines
/* GetTZ() example */
l="rmh.library";if ~show("L",l) then;if ~addlib(l,0,-30) then exit
if GetTZ("TZ") then do
say "Timeznone: " tz.tzstn
say "Timezone offset:" tz.timezone
if tz.daylight then say "Daylight: " tz.tzdtn
end
else say "Can't find ENV:TZ"